home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / UTILITY / DARTHT.ARJ / GO-DART.BAT < prev    next >
DOS Batch File  |  1992-01-25  |  2KB  |  68 lines

  1. ECHO OFF
  2. CLS
  3. REM  GO-DART.BAT  Copyright (c)  1989,1991  Ted Husted
  4. REM  Please! Do NOT alter this file!
  5. BREAK ON
  6. ECHO Hello. These files need to be on your distribution disk:
  7. ECHO ────────────────────────────────────────────────────────
  8. ECHO   go-dart.BAT   .. This batch file.
  9. ECHO   ────────────
  10. ECHO   dart.TXT      .. A plain-text program description.
  11. ECHO   ────────────
  12. ECHO   dart.EXE      .. The program file.
  13. ECHO   ────────────
  14. ECHO   dart.#1       .. Users guide.
  15. ECHO   ────────────
  16. ECHO   dart.#r       .. Dart registration form.
  17. ECHO ────────────────────────────────────────────────────────
  18. ECHO ·
  19. ECHO If any of these appear missing, they will be listed
  20. ECHO after you strike a key.
  21. ECHO ·
  22. ECHO Notice: If you are not "logged on" to the distribution
  23. ECHO ------  disk, the following list may not be accurate.
  24. ECHO ·
  25. PAUSE
  26. CLS
  27. FOR %%a IN (GO-DART.BAT) DO IF NOT EXIST %%a ECHO %%a is not found.
  28. ECHO ·
  29. FOR %%a IN (DART.EXE)  DO IF NOT EXIST %%a ECHO %%a is not found.
  30. ECHO ·
  31. FOR %%a IN (DART.#1 DART.#R) DO IF NOT EXIST %%a ECHO %%a is not found.
  32. ECHO ·
  33. ECHO Done with all files.
  34. ECHO ·
  35. ECHO If any files were "not found", check for them on your
  36. ECHO distribution disk and/or contact your distributor.
  37. ECHO ·
  38. ECHO (There will also be other files on your disk as well. A description
  39. ECHO  of every file on the disk is in the -DART-.DIR text file.)
  40. ECHO ·
  41. ECHO Press "(Ctrl)(C)" to quit now or
  42. PAUSE
  43. CLS
  44. IF EXIST SHOW.EXE SHOW DART.TXT
  45. CLS
  46. ECHO ·
  47. ECHO        We will now try to load Dart. We hope you like it.
  48. ECHO        We recommend you read the  DART.#1  file first! 
  49. ECHO ·                                  ═══════
  50. PAUSE
  51. IF EXIST DART.EXE DART DART.#1
  52. PAUSE
  53. ECHO ·
  54. ECHO If you're going to be redistributing this shareware disk,
  55. ECHO run the  RESET  batch file first.  RESET will delete 
  56. ECHO Dart's "bookmark" files.
  57. ECHO ·
  58. PAUSE
  59. ECHO ·
  60. ECHO To use Dart again, just type  DART  at your dos prompt.
  61. ECHO Do not run the Go or Go-Dart batch file each time.
  62. ECHO ·
  63. ECHO You will now be given a chance to print the registration form.
  64. ECHO ·
  65. PAUSE
  66. IF EXIST DART-REG.BAT DART-REG
  67. 
  68.